Socket
Socket
Sign inDemoInstall

@rimbu/common

Package Overview
Dependencies
1
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @rimbu/common

Common types and objects used in many other Rimbu packages


Version published
Maintainers
1
Created

Readme

Source

@rimbu/common

This package exports common types and objects used in many other Rimbu packages.

Here is a brief overview:

NameDescription
CollectFuntypes and values used in various collect methods in the collection.
Compan interface and default implementations of comparison functions to order/sort values.
Eqan interface and default implementations of equality functions to check value equality
Errfunctions to easily create error throwing behavior as fallback values
FastIterablean Iterable implementation that can be more performant than usual iterables
IndexRangeutilities to select index ranges in indexed collections
OptLazya utility to provide values that can optionally be lazy
Rangeutility types to specify ranges for comparable types
Reduceran API to create reusable pieces of logic that process streams of data that can be processed in parallel
TraverseStatea utility for loops to maintain the traversal state
Updatea standard way to update a value

Other than these values, there are a number of utility types that are exported that are also used throughout the collection.

For complete documentation please visit the Rimbu Docs.

Or Try Out Rimbu in CodeSandBox.

Installation

All types are exported through @rimbu/core. It is recommended to use that package.

To install this package separately:

Yarn/NPM

yarn add @rimbu/common

or

npm i @rimbu/common

Deno

Create a file called rimbu.ts and add the following:

export * from 'https://deno.land/x/rimbu/common/mod.ts';

Or using a pinned version (x.y.z):

export * from 'https://deno.land/x/rimbu/common@x.y.z/mod.ts';

Then import what you need from rimbu.ts:

import { Eq } from './rimbu.ts';

Because Rimbu uses complex types, it's recommended to use the --no-check flag (your editor should already have checked your code) and to specify a tsconfig.json file with the settings described below.

Running your script then becomes:

deno run --no-check --config tsconfig.json <your-script>.ts

Usage

import { Eq } from '@rimbu/common';

console.log(Eq.stringCaseInsentitive()('abc', 'AbC'));
// => true

Author

Arvid Nicolaas

Contributing

Feel very welcome to contribute to further improve Rimbu. Please read our Contributing guide.

Contributors

Made with contributors-img.

License

Licensed under the MIT License, Copyright © 2020-present Arvid Nicolaas.

See LICENSE for more information.

Keywords

FAQs

Last updated on 25 Nov 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc